home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / inc / qtvhdw.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-19  |  937 b   |  40 lines

  1.  
  2.  
  3. // ---------------------------------------------------------------------
  4. //
  5. // QTVHDW.H    - QuickTime for Windows C and C++ Bindings
  6. //
  7. //             Version 2.0
  8. //
  9. //             (c) Copyright 1988-1994 Apple Computer, Inc. All Rights Reserved.
  10. //
  11. // ---------------------------------------------------------------------
  12.  
  13.  
  14. #if !defined __QTVHDW_H
  15. #define __QTVHDW_H
  16.  
  17. // Header files
  18. #include <qtcodec.h>
  19.  
  20. /* VHDW function selectors
  21.    Negative selectors are reserved by the Component Manager
  22. */
  23. enum VHDW_SELECTOR { kSniffVideoHardware          =  0
  24.                    } ;
  25.  
  26. #if defined __cplusplus
  27. extern "C" {
  28. #endif
  29.  
  30. // Functions
  31.  
  32. HDWDISP QTAPI SniffVideoHardware( ComponentInstance ci, BMP_TYPE bmpt, LPSTR lpszCompID, LPSTR lpszHdwID) ;
  33. LPVOID QTAPI VidGetHdwType( BMP_TYPE bmpt) ;
  34.  
  35. #if defined __cplusplus
  36. } // extern "C"
  37. #endif
  38.  
  39. #endif                                      // __QTVHDW_H
  40.